using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Reflection;
[MethodImpl(MethodImplOptions.NoInlining)]
public string GetCurrentMethod()
{
var st = new StackTrace();
var sf = st.GetFrame(1);
return sf.GetMethod().Name;
}